home *** CD-ROM | disk | FTP | other *** search
/ Columbia Kermit / kermit.zip / newsgroups / misc.19970626-19970929 / 000166_news@newsmaster….columbia.edu _Fri Aug 15 10:12:21 1997.msg < prev    next >
Internet Message Format  |  2020-01-01  |  3KB

  1. Return-Path: <news@newsmaster.cc.columbia.edu>
  2. Received: from newsmaster.cc.columbia.edu (newsmaster.cc.columbia.edu [128.59.35.30])
  3.     by watsun.cc.columbia.edu (8.8.5/8.8.5) with ESMTP id KAA18769
  4.     for <kermit.misc@watsun.cc.columbia.edu>; Fri, 15 Aug 1997 10:12:21 -0400 (EDT)
  5. Received: (from news@localhost)
  6.     by newsmaster.cc.columbia.edu (8.8.5/8.8.5) id KAA29664
  7.     for kermit.misc@watsun; Fri, 15 Aug 1997 10:12:20 -0400 (EDT)
  8. Path: news.columbia.edu!watsun.cc.columbia.edu!fdc
  9. From: fdc@watsun.cc.columbia.edu (Frank da Cruz)
  10. Newsgroups: comp.protocols.kermit.misc
  11. Subject: Re: Kermit Server
  12. Date: 15 Aug 1997 14:12:18 GMT
  13. Organization: Columbia University
  14. Lines: 38
  15. Message-ID: <5t1o42$ku0$1@apakabar.cc.columbia.edu>
  16. References: <01bca83b$089a5480$d34e66cf@wan> <33F3BBFB.6A73@McLeodUSA.com>
  17. NNTP-Posting-Host: watsun.cc.columbia.edu
  18. Xref: news.columbia.edu comp.protocols.kermit.misc:7470
  19.  
  20. In article <33F3BBFB.6A73@McLeodUSA.com>,
  21. Michael Roeder  <mroeder@McLeodUSA.com> wrote:
  22. : Mark Wan wrote:
  23. : > I am writing an app to download a file from a host.  The app on the host
  24. : > side creates a data file, gives me the file name and changes in Kermit
  25. : > server mode.  The tools I am using does not support native Kermit server
  26. : > commands.  I tried to emulate the "get filename" using escape sequences
  27. : > Esc-c without success.
  28. : I am trying to do the same thing with a project I am working on. The
  29. : "client" side is already developed and I am not in a position to
  30. : re-engineer it. My goal is to find a way to just monitor a serial port
  31. : an capture the incoming data. I have the C-Kermit book, but not here
  32. : with me. I think that I should be able to use Kermit in some fashion to
  33. : capture incoming data. Any suggestions? I think that Server Mode would
  34. : work the best since it is able to monitor.
  35. : My other option appears to be either mgetty on the UNIX port or possible
  36. : reverse telnet. But, I would rather implement Kermit.
  37. Who wouldn't? :-)
  38.  
  39. Well, that's a rather vague statement of requirements.  Depending on what is
  40. coming in from the other side, you have many choices:
  41.  
  42.  1. A script to monitor incoming material and to take appropriate actions
  43.     depending on what it is (hint: use the MINPUT command).
  44.  
  45.  2. A simple session log, which just records everything that comes in.
  46.  
  47.  3. Kermit server mode, but this means the thing on the other end of the
  48.     connection has to be a Kermit client (SEND, GET, etc).
  49.  
  50.  4. Various combinations of 1-3.
  51.  
  52. There are examples of all these techniques in the book.
  53.  
  54. - Frank